.logo {
    height: 100%;
    width: 100%;
    display: inline;
}

body {
    background-color: #010432;
    text-align: center;
    color: white;
    display: block;
}

.header {
    border: 1px solid #ff8177;
    display: flex;
    flex-wrap: wrap;
    padding: 1em 1em;
    text-align: center;
}

h1 {
    width: 100%;
    text-align: center;
    font-size: 2.5em;
    color: #ff8177
}

.middle {
    font-size: 3rem;
}

.slideshow {
    margin-top: 25px;
    width: auto;
    height: auto;
    padding-bottom: 75px;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.placeholder {
    text-align: center;
}

.gallery-img {
    max-width: auto;
    max-height: auto;
    width: max-content;
    height: auto;
    padding: 10px;
    display: none;
    z-index: 0;
    clear: both;
}

.desc-text {
    margin: auto;
    text-align: center;
    width: 50%;
    font-size: 1.2rem;
    padding: 20px 0;
}

.title-text {
    padding-bottom: 20px;
    font-size: 3rem;
}

.gallery-box {
    width: max-content;
    height: max-content;
    background-color: none;
    margin: auto;
    display: flex;
    flex-direction: column;
    color: black;
}

.buttonbox {
    width: auto;
    display: inline-flex;
    padding: 5px;
    flex-direction: row;
    justify-content: center;
    align-items: center;

}

.navbutton {
    display: flex;
    padding: 10px;
    background-color: rgb(40, 40, 40, 0.01);
    color: rgba(128, 128, 128, 0.1);
    font-size: 24px;
    border-style: none;

}

.imgnum {
    align-self: flex-end;
    color: rgba(128, 128, 128, 0.1);
    display: flex;
    font-size: large;
}

#forward {
    margin-left: auto;

}

#backward {
    margin-right: auto;
}

.imggrid {
    max-width: 750px;
    width: 100%;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 1rem;
    grid-template-rows: auto;
    align-items: end;
}

.griditem {
    width: auto;
    height: auto;
    padding: 2rem;
}

.imgingrid {
    width: 100%;
    height: auto;
}

.gallery-box:hover {
    background-color: rgba(40, 40, 40, 0.7);
    transform: all 0.7s ease;
}

.gallery-box:hover * {

    color: white;
}

.navbutton:hover {
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 20px;
}